/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
.faq-block {
  margin-top: 2.5rem;
  margin-bottom: 4.5rem;
}

@media only screen and (min-width: 768px) {
  .faq-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.faq-block header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  text-align: center;
  border: none !important;
}

.faq-block header img {
  max-width: 100px !important;
}

.faq-block header img, .faq-block header h2 {
  margin: 0;
}

.faq-block header h2 {
  width: 50%;
  min-width: 250px;
  margin: auto;
}

@media only screen and (min-width: 768px) {
  .faq-block header {
    text-align: left;
  }
  .faq-block header h2 {
    margin: 0;
  }
}

.faq-block section {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.faq-block h2 {
  color: #47AFFF;
}

.faq-block .single-faq {
  border-bottom: 1px solid rgba(26, 26, 26, 0.4);
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
  height: auto;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.faq-block .single-faq .question, .faq-block .single-faq .question-open {
  font-weight: 700;
  position: relative;
  padding: 1rem 0;
  padding-right: 1.5rem;
  cursor: pointer;
  margin: 0;
}

.faq-block .single-faq .question .fa-angle-down, .faq-block .single-faq .question-open .fa-angle-down {
  color: #47AFFF;
  position: absolute;
  right: 1rem;
  pointer-events: none;
}

.faq-block .single-faq .question:hover {
  background-color: #f0f9ff;
}

.faq-block .single-faq .answer, .faq-block .single-faq .answer-open {
  overflow: hidden;
  height: 100%;
  max-height: 0px;
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.faq-block .single-faq .answer.open, .faq-block .single-faq .answer-open.open {
  max-height: 100%;
}

.faq-block .single-faq:focus-within .answer {
  max-height: 100%;
}

.faq-block.accordian header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.faq-block.accordian header h2 {
  color: #1a1a1a;
  font-weight: 700;
}

.faq-block.accordian section {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100% - 33.33%);
          flex: 0 1 calc(100% - 33.33%);
}

/*# sourceMappingURL=../maps/blocks/faq.css.map */
